:root {
    --ebfq1-container-width: 1200px;
    --ebfq1-dark: #000000;
    --ebfq1-primary: rgb(37, 52, 63);
    --ebfq1-secondary: #E60012;
    --ebfq1-gray: #cccccc;
    --ebfq1-contact-text: #ffffff;

    --ebfq1-space-xs: .4rem;
    --ebfq1-space-sm: .8rem;
    --ebfq1-space-md: 1.2rem;
    --ebfq1-space-lg: 2rem;
    --ebfq1-space-xl: 3rem;

    --ebfq1-fs-sm: .85rem;
    --ebfq1-fs-md: 1.1rem;

    --ebfq1-transition: .35s cubic-bezier(.4, 0, .2, 1);
    --ebfq1-container-shadow: 0px 2px 12px 0px var(--ebfq1-primary);

}

body {

    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ebfq1-section {

    display: flex;

    justify-content: center;

}



.ebfq1-container {

    width: calc(100vw - 2em);
    margin: 0 auto;
    max-width: var(--ebfq1-container-width);

    display: flex;

    flex-direction: column;

    gap: var(--ebfq1-space-xl);

}



.ebfq1-title {

    text-align: center;

    font-size: clamp(1.6rem,

            2.5vw,

            2.2rem);

    color: var(--ebfq1-primary);

}



.ebfq1-list {

    display: flex;

    flex-direction: column;

    gap: var(--ebfq1-space-md);

}



.ebfq1-item {

    border: 1px solid var(--ebfq1-gray);

    border-radius: 12px;

    display: flex;

    flex-direction: column;

    gap: var(--ebfq1-space-sm);

    transition: var(--ebfq1-transition);

    overflow: hidden;

    padding: var(--ebfq1-space-sm);

    position: relative;

    cursor: pointer;
}

.ebfq1-item.ebfq1-active::before,
.ebfq1-item.ebfq1-active::after {
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-size: 5rem;
    position: absolute;
    opacity: 0.2;

    z-index: 0;
}

.ebfq1-item.ebfq1-active::before {

    color: var(--ebfq1-secondary);
    top: 20px;
    left: 20px;
}

.ebfq1-item.ebfq1-active::after {

    color: var(--ebfq1-primary);

    top: -5px;

    left: 5px;

    transform: rotateY(180deg);

}

.ebfq1-active {

    box-shadow: var(--ebfq1-container-shadow);

}



.ebfq1-question-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: var(--ebfq1-space-md);

}



.ebfq1-question {

    font-size: var(--ebfq1-fs-md);

    color: var(--ebfq1-primary);

}



.ebfq1-toggle {

    background: transparent;

    border: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

}



.ebfq1-toggle i:nth-child(2) {

    display: none;

}



.ebfq1-active .ebfq1-toggle i:nth-child(1) {

    display: none;

}



.ebfq1-active .ebfq1-toggle i:nth-child(2) {

    display: block;

}



.ebfq1-answer {

    max-height: 0;

    overflow: hidden;

    font-size: var(--ebfq1-fs-sm);

    color: var(--ebfq1-dark);

    transition: var(--ebfq1-transition);

}



.ebfq1-active .ebfq1-answer {

    max-height: fit-content;

}